home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Almathera Ten Pack 3: CDPD 3
/
Almathera Ten on Ten - Disc 3: CDPD3.iso
/
scope
/
001-025
/
scopedisk6
/
arexx
/
arexx1
/
man.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1995-03-18
|
156b
|
6 lines
/* man -- show manual page */
parse arg x
x = 'docs:' || x || '.doc'
if exists(x) then arun more x
else say 'No manual entry for' substr(x,6,length(x)-9)